6.1.1 Obtain transaction speed and discount ratio
#Brief description: Get OTC withdrawal speed
- Request method: POST
- Request interface: https://gateway-domain/wallet-trade-merchant/v1/otc/payment/option/speed
- Request media type (JSON data format)Content-Type: application/json
Query parameters
None
Response json example
{
"code": 0,
"success": true,
"message": null,
"data": {
"NOW": {"expireMinute": -1,"discount": 0},
。 "FAST": {"expireMinute": 5,"discount": 0},
"NORMAL": {"expireMinute": 15,"discount": 20},
"SLOW": {"expireMinute": 60,"discount": 50}
}
}
Response data parameter description
| Parameter name | Type | Parameter meaning | Remarks |
|---|---|---|---|
NOW | object | Instant | When the timeout is negative, it means that this order will not enter the matching pool (it will be directly processed manually by the operator). |
| └expireMinute | string | Timeout minutes | |
| └ discount | number | Channel fee discount | |
FAST | object | Fast | |
| └expireMinute | string | Timeout minutes | |
| └ discount | number | Channel fee discount | |
NORMAL | object | General | |
| └expireMinute | string | Timeout minutes | |
| └ discount | number | Channel fee discount | |
SLOW | object | Slower | |
| └expireMinute | string | Timeout minutes | |
| └ discount | number | Channel fee discount |